# load libraries
using NetCDF # for loading of NetCDF data
using DiskArrays: eachchunk # for exploring the chunking of the data
using Statistics # for statistical analyses
# download data
filebase = artifact"example_nc"
# load files metadata
xmap0 = NetCDF.open(joinpath(filebase,"t2m_map.nc"))
xbox0 = NetCDF.open(joinpath(filebase,"t2m_blocks.nc"));
# load data
xmap = xmap0["air_temperature_2m"];
xbox = xbox0["air_temperature_2m"];
